Skip to main content
Version: 1.0.2

Remove Biller

Provides functionality for business or individual users to remove a biller from their existing list.

Endpoint

Method: POST
URL: {{URL}}/PL/jsonrpc

Headers

KeyTypeRequiredDescription
Content-TypestringYesapplication/json

Request

{
"method": "BillpayConnectorService.RemoveBiller",
"id": "1",
"params": {
"payload": {
"accountNumber": "200213493088644",
"billerClass": "Bank Card",
"billerId": "0311001619",
"billerName": "AMEX Standard",
"billerType": "Core",
"consumerAccountNumber": "374322123456789",
"billerAddress": {
"addressLine1": "PO Box 37271",
"city": "Hunt Valley",
"country": "USA",
"state": "MD",
"type": "Previous",
"zipCode": "21297"
},
"billerMask": {
"maskFormat": "374322#########",
"maskLength": "15",
"maskRejex": "374322\\d{9}"
}
},
"api": {
"signature": "MEYCIQC/JTBp8ACIMO6YzAhh0nFVW8+yjnaPmfPt4pAxi6Y+iAIhAMV7H1c31JDOZ4fORHwHVhXgsG9xESmdkVColFALHKqJ",
"credential": "Basic bS5rdW1hcisxQG5ldHhkLmNvbToyYjVlMDIzMDg1NjU0YTE3ODUwZWE0N2Q1NWFlNWViNA==",
"keyId": "231008"
}
}
}

Response: 200

Request Parameters
ParameterDescription
method
Mandatory
String
API method name
Constant: billpayConnectorService.RemoveBiller
id
Mandatory
String
Unique ID for Request
accountNumber
Mandatory
String
Customer account number
consumerAccountNumber
Mandatory
String
Biller consumer number
billerAddress
Optional
String
Biller address
billerClass
Mandatory
String
Biller class
billerId
Mandatory
String
Biller ID
billerName
Mandatory
String
Biller name
billerMask.
maskFormat
Mandatory
String
Mask format of consumer number
billerMask.
maskLength
Mandatory
String
Mask format consumer number length
billerMask.
maskRejex
Mandatory
String
Regex pattern of consumer number
credential
Mandatory
String
API credential for authentication
signature
Mandatory
String
Signature for request validation
keyId
Mandatory
String
Key ID for authentication
{
"id": "1",
"result": {
"status": "DELETED",
"message": "Biller Removed Successfully"
},
"jsonrpc": "2.0"
}